home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1997: The Complete Utilities Toolkit / macworld-complete-utilities-1997.iso / Programming / Bob 1.5 / X.bob < prev    next >
Encoding:
Text File  |  1993-10-02  |  274 b   |  11 lines  |  [TEXT/????]

  1. main()
  2. {
  3.     a = newvector(10);
  4.     b = newstring(20);
  5.     stdout << "typeof(1)=" << typeof(1) << "\n";
  6.     stdout << "typeof(a)=" << typeof(a)
  7.        << ", sizeof(a)=" << sizeof(a) << "\n";
  8.     stdout << "typeof(b)=" << typeof(b)
  9.        << ", sizeof(b)=" << sizeof(b) << "\n";
  10. }
  11.